-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ソング:labファイルを書き出す機能を追加 #2383
base: main
Are you sure you want to change the base?
ソング:labファイルを書き出す機能を追加 #2383
Conversation
🚀 プレビュー用ページを作成しました 🚀 更新時点でのコミットハッシュ: |
src/sing/fileDataGenerator.ts
Outdated
// REVIEW: vowel != "N" のときに vowel.toLowerCase() する必要がある…? | ||
writeLine(phoneme.frameLength / frameRate, phoneme.phoneme); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
トークはvowel != "N"
のときに vowel.toLowerCase()
する実装になっていました。
ソングは必要なさそう…?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
うーーーーーーん!!! 知らなかった・・・!!!
ユーザー的にはどちらでも良さそう。
ただまあ仕様は揃えてあげた方が良さそうなのと、大文字の時は無声というのは若干特殊な気がしないでもないので、母音のaiueoにしちゃって良さそうに感じました!
もしトーク側が未実装だったら、大文字のままにした方が良いかもですね!
(でももしかしたら既存ソフトに合わせてる可能性もありそう。)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
トークと合わせてvowel != "N"
のときにtoLowerCase()
するようにしました!
// 「ファイル」メニュー | ||
const fileSubMenuData = computed<MenuItemData[]>(() => [ | ||
{ | ||
type: "button", | ||
label: "音声を出力", | ||
label: "音声書き出し", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
トーク側と合わせました。
ちょっと実際に動かしてみて挙動だけチェックさせていただきました! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ちょっと試していました。
各トラックの最初各トラックの最初のフレーズの始点が0になる感じだとかなり不便(1キャラに複数トラックが割り当たっている場合)なのでここは挙動を変えるべきだと思います。
トラックの先頭を0秒としてlabファイル(音素タイミング)が書き出される形だと不便、ということでしょうか…? |
あ、明らかに書き方を間違えました... トラックの最初のPhraseの始点が0秒だと不便、ですね。 |
なるほどです! |
修正しました! |
トラックの始点じゃなく、最初のpauが0票の基準になってそう?
|
マイナス時間のところを書き出さないようにしました! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
挙動は大丈夫そうでした。
@@ -783,8 +792,8 @@ export const singingStoreState: SingingStoreState = { | |||
startRenderingRequested: false, | |||
stopRenderingRequested: false, | |||
nowRendering: false, | |||
nowAudioExporting: false, | |||
cancellationOfAudioExportRequested: false, | |||
exportState: "NotExporting", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
enumの命名形式はちゃんと決めた方がよさそう(どうなってましたっけ?)
src/components/Sing/menuBarData.ts
Outdated
} | ||
notifyResult( | ||
results[0], // TODO: SaveResultObject[] に対応する | ||
"text", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
通知は「labファイル」の方がよさそう?
内容
labファイルを書き出す機能を追加します。
書き出し対象のトラックを指定できた方が良いと思いますが、ひとまず全てのトラックを対象として書き出す形で実装しています。
関連 Issue
その他